home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 43 / Mac Magazin and MacEasy Magazine CD - Issue 43.iso / Software / Mobiles Büro / Newton / Newton Entwickler / DIL 2.0 Sample Code ƒ / SoupDrink-Mac-4 / AppDialogs.h < prev    next >
Text File  |  1996-05-23  |  703b  |  34 lines

  1. /*
  2.  * AppDialogs.h
  3.  *
  4.  *    Written by:    Rob Langhorne, with changes by David Fedor
  5.  * 
  6.  *    Copyright:    © 1995-1996 by Apple Computer, Inc.  All rights reserved.
  7.  *
  8.  *    Purpose:
  9.  *    #defines for AppDialogs.c
  10.  */
  11.  
  12.  
  13. #ifndef __AppDialogs_H
  14. #define __AppDialogs_H
  15.  
  16.  
  17. #define kSplashDialog         128
  18. #define    kInputDialog        129
  19. #define kAboutDialog        201
  20. #define kInfoDialog            203
  21.  
  22. #define OK                1
  23. #define CANCEL            2
  24. #define    INPUT_TEXT        3        /*    Text item                    */
  25. #define LABEL            4
  26.  
  27. void        DisplayAlert(int which);
  28. void        PostAlertMessage(char*a, char*b, char*c, char*d);
  29. Boolean        inputDialog(char *inputText, char* initString, char* label);
  30. void        ShowSplash(DialogPtr *splash) ;
  31. void        HideSplash(DialogPtr splash) ;
  32.  
  33. #endif
  34.